Skip to content

chore(deps): update website-frontend#76

Open
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/website-frontend
Open

chore(deps): update website-frontend#76
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/website-frontend

Conversation

@renovate
Copy link
Copy Markdown

@renovate renovate Bot commented Aug 5, 2025

This PR contains the following updates:

Package Change Age Confidence
html-webpack-plugin 5.6.35.6.7 age confidence
mini-css-extract-plugin 2.9.22.10.2 age confidence
sass 1.86.01.99.0 age confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

jantimon/html-webpack-plugin (html-webpack-plugin)

v5.6.7

Compare Source

v5.6.6

Compare Source

v5.6.5

Compare Source

v5.6.4

Compare Source

webpack/mini-css-extract-plugin (mini-css-extract-plugin)

v2.10.2

Compare Source

v2.10.1

Compare Source

v2.10.0

Compare Source

Features
  • respect output.cssFilename and output.cssChunkFilename (#​1151) (54f775d)
Bug Fixes
  • prevent generation of a contentHash for a chunk when the set of css modules is of size 0 (#​1154) (4e4a95d)
2.9.4 (2025-08-11)
Bug Fixes
2.9.3 (2025-08-04)
Bug Fixes
  • should update initial chunks correctly with filename (dab023f)
2.9.2 (2024-11-01)
Bug Fixes
2.9.1 (2024-08-19)
Bug Fixes
  • add export default {} when CSS modules enabled and a file is empty for the defaultExport option (8f77e19)

v2.9.4

Compare Source

Features
  • respect output.cssFilename and output.cssChunkFilename (#​1151) (54f775d)
Bug Fixes
  • prevent generation of a contentHash for a chunk when the set of css modules is of size 0 (#​1154) (4e4a95d)
2.9.4 (2025-08-11)
Bug Fixes
2.9.3 (2025-08-04)
Bug Fixes
  • should update initial chunks correctly with filename (dab023f)
2.9.2 (2024-11-01)
Bug Fixes
2.9.1 (2024-08-19)
Bug Fixes
  • add export default {} when CSS modules enabled and a file is empty for the defaultExport option (8f77e19)

v2.9.3

Compare Source

Features
  • respect output.cssFilename and output.cssChunkFilename (#​1151) (54f775d)
Bug Fixes
  • prevent generation of a contentHash for a chunk when the set of css modules is of size 0 (#​1154) (4e4a95d)
2.9.4 (2025-08-11)
Bug Fixes
2.9.3 (2025-08-04)
Bug Fixes
  • should update initial chunks correctly with filename (dab023f)
2.9.2 (2024-11-01)
Bug Fixes
2.9.1 (2024-08-19)
Bug Fixes
  • add export default {} when CSS modules enabled and a file is empty for the defaultExport option (8f77e19)
sass/dart-sass (sass)

v1.99.0

Compare Source

  • Add support for parent selectors (&) at the root of the document. These are
    emitted as-is in the CSS output, where they're interpreted as the scoping
    root
    .

  • User-defined functions named calc or clamp are no longer forbidden. If
    such a function exists without a namespace in the current module, it will be
    used instead of the built-in calc() or clamp() function.

  • User-defined functions whose names begin with - and end with -expression,
    -url, -and, -or, or -not are no longer forbidden. These were
    originally intended to match vendor prefixes, but in practice no vendor
    prefixes for these functions ever existed in real browsers.

  • User-defined functions named EXPRESSION, URL, and ELEMENT, those that
    begin with - and end with -ELEMENT, as well as the same names with some
    lowercase letters are now deprecated, These are names conflict with plain CSS
    functions that have special syntax.

    See the Sass website for details.

  • In a future release, calls to functions whose names begin with - and end
    with -expression and -url will no longer have special parsing. For now,
    these calls are deprecated if their behavior will change in the future.

    See the Sass website for details.

  • Calls to functions whose names begin with - and end with -progid:... are
    deprecated.

    See the Sass website for details.

v1.98.0

Compare Source

Command-Line Interface
  • Gracefully handle dependency loops in --watch mode.
Dart API
  • Add a const Logger.defaultLogger field. This provides a logger that emits to
    standard error or the browser console, but automatically chooses whether to
    use terminal colors.
JavaScript API
  • Fix a crash when manually constructing a SassCalculation for 'calc' with
    an argument that can't be simplified.

  • Properly emit deprecation warnings as text rather than StringBuffer objects
    when running in a browser.

  • Emit colored warnings and other messages on the console when running in a
    browser.

v1.97.3

Compare Source

  • Fix a bug where nesting an at-rule within multiple style rules in plain CSS
    could cause outer style rules to be omitted.

v1.97.2

Compare Source

  • Additional fixes for implicit configuration when nested imports are involved.

v1.97.1

Compare Source

v1.97.0

Compare Source

  • Add support for the display-p3-linear color space.

v1.96.0

Compare Source

  • Allow numbers with complex units (more than one numerator unit or more than
    zero denominator units) to be emitted to CSS. These are now emitted as
    calc() expressions, which now support complex units in plain CSS.

v1.95.1

Compare Source

  • No user-visible changes.

v1.95.0

Compare Source

  • Add support for the CSS-style if() function. In addition to supporting the
    plain CSS syntax, this also supports a sass() query that takes a Sass
    expression that evaluates to true or false at preprocessing time depending
    on whether the Sass value is truthy. If there are no plain-CSS queries, the
    function will return the first value whose query returns true during
    preprocessing. For example, if(sass(false): 1; sass(true): 2; else: 3)
    returns 2.

  • The old Sass if() syntax is now deprecated. Users are encouraged to migrate
    to the new CSS syntax. if($condition, $if-true, $if-false) can be changed to
    if(sass($condition): $if-true; else: $if-false).

    See the Sass website for details.

  • Plain-CSS if() functions are now considered "special numbers", meaning that
    they can be used in place of arguments to CSS color functions.

  • Plain-CSS if() functions and attr() functions are now considered "special
    variable strings" (like var()), meaning they can now be used in place of
    multiple arguments or syntax fragments in various CSS functions.

v1.94.3

Compare Source

  • Fix the span reported for standalone % expressions followed by whitespace.

v1.94.2

Compare Source

Command-Line Interface
  • Using --fatal-deprecation <version> no longer emits warnings about
    deprecations that are obsolete.
Dart API
  • Deprecation.forVersion now excludes obsolete deprecations from the set it
    returns.
JS API
  • Excludes obsolete deprecations from fatalDeprecations when a Version is
    passed.
Node.js Embedded Host
  • Fix a bug where a variable could be used before it was initialized during
    async compilation.

v1.94.1

Compare Source

  • No user-visible changes.

v1.94.0

Compare Source

  • Potentially breaking compatibility fix: @function rules whose names
    begin with -- are now parsed as unknown at-rules to support the plain CSS
    @function rule. Within this rule, the result property is parsed as raw
    CSS just like custom properties.

  • Potentially breaking compatibility fix: @mixin rules whose names begin
    with -- are now errors. These are not yet parsed as unknown at-rules because
    no browser currently supports CSS mixins.

v1.93.3

Compare Source

  • Fix a performance regression that was introduced in 1.92.0.

v1.93.2

Compare Source

  • No user-visible changes.
JavaScript API
  • Fix another error in the release process for @sass/types.

v1.93.1

Compare Source

  • No user-visible changes.
JavaScript API
  • Fix an error in the release process for @sass/types.

v1.93.0

Compare Source

  • Fix a crash when a style rule contains a nested @import, and the loaded file
    @uses a user-defined module as well as @includes a top-level mixin which
    emits top-level declarations.
JavaScript API
  • Release a @sass/types package which contains the type annotations used by
    both the sass and sass-embedded package without any additional code or
    dependencies.

v1.92.1

Compare Source

  • Fix a bug where variable definitions from one imported, forwarded module
    would not be passed as implicit configuration to a later imported, forwarded
    module.

v1.92.0

Compare Source

  • Breaking change: Emit declarations, childless at-rules, and comments in
    the order they appear in the source even when they're interleaved with nested
    rules. This obsoletes the mixed-decls deprecation.

  • Breaking change: The function name type() is now fully reserved for the
    plain CSS function. This means that @function definitions with the name
    type will produce errors, while function calls will be parsed as special
    function strings.

  • Configuring private variables using @use ... with, @forward ... with, and
    meta.load-css(..., $with: ...) is now deprecated. Private variables were
    always intended to be fully encapsulated within the module that defines them,
    and this helps enforce that encapsulation.

  • Fix a bug where @extend rules loaded through a mixture of @import and
    @use rules could fail to apply correctly.

Command-Line Interface
  • In --watch mode, delete the source map when the associated source file is
    deleted.

v1.91.0

Compare Source

  • Potentially breaking change: meta.inspect() (as well as other systems
    that use it such as @debug and certain error messages) now emits numbers
    with as high precision as is available instead of rounding to the nearest
    1e⁻¹⁰ as we do when serializing to CSS. This better fits the purpose of
    meta.inspect(), which is to provide full information about the structure of
    a Sass value.

  • Passing a rest argument ($arg...) before a positional or named argument when
    calling a function or mixin is now deprecated. This was always outside the
    specified syntax, but it was historically treated the same as passing the rest
    argument at the end of the argument list whether or not that matched the
    visual order of the arguments.

v1.90.0

Compare Source

  • Allow a @forwarded module to be loaded with a configuration when that module
    has already been loaded with a different configuration and the module
    doesn't define any variables that would have been configured anyway.

v1.89.2

Compare Source

Embedded Host
  • Fixed a compilation error caused by an outdated buf dependency.

v1.89.1

Compare Source

  • No user-visible changes.

v1.89.0

Compare Source

  • Allow the Node package importer to load files even when there are multiple
    potential resolutions, as long as those resolutions all point to the same
    file.

v1.88.0

Compare Source

  • Allow custom properties with empty values (such as --var:;).

  • Fix a bug when calculating source spans for interpolations.

Dart and JS APIs
  • Potentially breaking bug fix: Throw an error when passing a function or
    mixin object from one compilation to another.
Dart API
  • Deprecate passing a relative URL to compileString() and related functions.

v1.87.0

Compare Source

  • Potentially breaking bug fix: When a plain CSS file with a top-level
    nesting selector & is loaded into a nested Sass context via
    meta.load-css() or @import, Sass now emits plain CSS nesting rather than
    incorrectly combining it with the parent selector using a descendant
    combinator.

v1.86.3

Compare Source

  • Fix a bug introduced in 1.86.1 where Sass fails to resolve paths starting with
    a .. segment.

v1.86.2

Compare Source

  • No user-visible changes.

v1.86.1

Compare Source

  • Improve the performance of file: URL case canonicalization on Windows and
    Mac OS.

Configuration

📅 Schedule: (in timezone Australia/Sydney)

  • Branch creation
    • "before 6am on wednesday"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot added the dependencies label Aug 5, 2025
@renovate renovate Bot force-pushed the renovate/website-frontend branch from d5dc79f to 060fef2 Compare August 6, 2025 04:34
@renovate renovate Bot force-pushed the renovate/website-frontend branch 3 times, most recently from add46bc to 41682c3 Compare August 19, 2025 05:29
@renovate renovate Bot force-pushed the renovate/website-frontend branch from 41682c3 to 85d1000 Compare August 22, 2025 02:17
@renovate renovate Bot force-pushed the renovate/website-frontend branch 4 times, most recently from ba0d542 to fe42050 Compare September 6, 2025 03:39
@renovate renovate Bot force-pushed the renovate/website-frontend branch 4 times, most recently from f52e59c to 94f547f Compare September 27, 2025 00:01
@renovate renovate Bot force-pushed the renovate/website-frontend branch from 94f547f to 365d4b2 Compare September 30, 2025 03:05
@renovate renovate Bot force-pushed the renovate/website-frontend branch from 365d4b2 to 1da510c Compare October 8, 2025 20:08
@renovate renovate Bot force-pushed the renovate/website-frontend branch from 1da510c to 8a4a5ec Compare October 23, 2025 06:59
@renovate renovate Bot force-pushed the renovate/website-frontend branch from 8a4a5ec to 264ecd2 Compare November 1, 2025 12:09
@renovate renovate Bot force-pushed the renovate/website-frontend branch 3 times, most recently from 718b42e to 489ef5c Compare November 20, 2025 01:44
@renovate renovate Bot force-pushed the renovate/website-frontend branch 2 times, most recently from 0d1c65e to 57dd072 Compare December 10, 2025 07:37
@renovate renovate Bot force-pushed the renovate/website-frontend branch 3 times, most recently from 88f399a to 82af1df Compare December 19, 2025 03:39
@renovate renovate Bot force-pushed the renovate/website-frontend branch from 82af1df to 804aac4 Compare December 20, 2025 15:14
@renovate renovate Bot force-pushed the renovate/website-frontend branch 2 times, most recently from 4d649c2 to 20b0ac2 Compare January 6, 2026 11:47
@renovate renovate Bot force-pushed the renovate/website-frontend branch from 20b0ac2 to 150f1be Compare January 9, 2026 00:39
@renovate renovate Bot force-pushed the renovate/website-frontend branch 4 times, most recently from c62a0b4 to d71308f Compare January 24, 2026 03:42
@renovate renovate Bot force-pushed the renovate/website-frontend branch 3 times, most recently from 39249cb to 3b87743 Compare February 6, 2026 11:54
@renovate renovate Bot force-pushed the renovate/website-frontend branch from 3b87743 to 266fed7 Compare February 13, 2026 00:13
@renovate renovate Bot changed the title chore(deps): lock file maintenance website-frontend chore(deps): update website-frontend Feb 13, 2026
@renovate renovate Bot force-pushed the renovate/website-frontend branch from 266fed7 to a08371e Compare March 11, 2026 03:19
@renovate renovate Bot force-pushed the renovate/website-frontend branch from a08371e to 04ebd6f Compare March 26, 2026 12:36
@renovate renovate Bot force-pushed the renovate/website-frontend branch from 04ebd6f to 6cccc7e Compare April 4, 2026 20:44
@renovate renovate Bot force-pushed the renovate/website-frontend branch from 6cccc7e to ccaf27d Compare April 17, 2026 22:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants